home *** CD-ROM | disk | FTP | other *** search
/ MACD 5 / MACD 5.bin / workbench / tools / czesc_3 / multiuser / src / library / memory.h < prev    next >
Text File  |  1994-03-07  |  620b  |  21 lines

  1. /************************************************************
  2. * MultiUser - MultiUser Task/File Support System                *
  3. * ---------------------------------------------------------    *
  4. * Memory management                                                        *
  5. * ---------------------------------------------------------    *
  6. * © Copyright 1993-1994 Geert Uytterhoeven                        *
  7. * All Rights Reserved.                                                    *
  8. ************************************************************/
  9.  
  10.  
  11.     /*
  12.      *        Function Prototypes
  13.      */
  14.  
  15. BOOL InitMemory(void);
  16. void CleanUpMemory(void);
  17. APTR MAlloc(ULONG size);
  18. void Free(APTR block, ULONG size);
  19. APTR MAllocV(ULONG size);
  20. void FreeV(APTR block);
  21.